* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6em;
}

a {
    color: #333;
    text-decoration: none;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #ff676d;
    display: block;
    align-items: center;
    justify-content: center;
}

.image-logo {
    align-items: center;

    display: block;
}

.container {

    background-color: #fff;
    width: 400px;
    height: 250px;
    border-radius: 7px;
    padding: 20px;
    transition: .1s;
}

.header h1 {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 5px;
}

.header p {
    font-size: 16px;
    margin-bottom: 10px;
}

input,
button {
    width: 100%;
    height: 50px;
    outline: none;
    border-radius: 5px;
}

button {
    border: none;
    background-color: #1d68d8;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
}

input {
    border: 1px solid #8b8a8a;
    padding-left: 10px;
    margin-bottom: 15px;
    font-size: 15px;
    display: block;

}

.qr-code {
    padding: 25px 0;
    border: 1px solid #ccc;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: .5s;
}

.container.active {
    height: 490px;
}

.container.active .qr-code {
    opacity: 1;
    pointer-events: auto;
}

#navbar {
    background: #333;
    color: white;
    overflow: auto;
}

#navbar a {
    color: white;
}

#navbar h1 {
    float: left;
    margin: 5px;
    margin-top: 15px;
    font-family: Georgia, Times, 'Times New Roman', serif;
}

#navbar ul {
    list-style: none;
    float: right;
    font-size: auto;
    font-style: inherit;
}

#navbar ul li {
    float: left;
}

#navbar ul li a {
    display: block;
    padding: 20px;
    text-align: center;
}

#navbar ul li a:hover,
#navbar ul li a.current {
    background: #444;
    color: #f7c08a;
}

.container1 {
    margin: auto;
    max-width: 1100px;
    overflow: auto;
    padding: 0 20px;
}

.Copyright {
    margin-top: 10%;
    background: #434242;
    width: auto;
    text-align: center;
    padding: 15px;
    color: #f4f4f4;
}